home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pafiledb_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  60 lines

  1. #
  2. # written by Renaud Deraison
  3. #
  4. # Subject: paFileDB 3.x SQL Injection Vulnerability
  5. # From: <ersatz@unixhideout.com>
  6. # To: bugtraq@securityfocus.com
  7. # Subject: XSS vulnerabilites in Pafiledb
  8.  
  9.  
  10. if (description)
  11. {
  12.  script_id(11479);
  13.  script_bugtraq_id(6021);
  14.  script_version ("$Revision: 1.10 $");
  15.  
  16.  script_name(english:"paFileDB XSS");
  17.  desc["english"] = "
  18. The remote pafiledb.php is vulnerable to a cross site scripting
  19. attack.
  20.  
  21. An attacker may use this flaw to steal the cookies of your users
  22.  
  23.  
  24. Solution : Upgrade to paFileDB 3.0
  25. Risk factor : Medium";
  26.  
  27.  script_description(english:desc["english"]);
  28.  script_summary(english:"Determine if pafiledb is vulnerable to XSS");
  29.  script_category(ACT_GATHER_INFO);
  30.  script_family(english:"CGI abuses", francais:"Abus de CGI");
  31.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  32.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  33.  script_require_ports("Services/www", 80);
  34.  exit(0);
  35. }
  36.  
  37. include("http_func.inc");
  38. include("http_keepalive.inc");
  39.  
  40. port = get_http_port(default:80);
  41.  
  42. if(!get_port_state(port))exit(0);
  43. if(!can_host_php(port:port))exit(0);
  44. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  45.  
  46. foreach d (cgi_dirs())
  47. {
  48.  url = string(d, '/pafiledb.php?action=download&id=4?"<script>alert(foo)</script>"');
  49.  req = http_get(item:url, port:port);
  50.  buf = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  51.  if( buf == NULL ) exit(0);
  52.  
  53.  if("<script>alert(foo)</script>" >< buf)
  54.    {
  55.     security_warning(port);
  56.     exit(0);
  57.    }
  58. }
  59.  
  60.